home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / pinnacle_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  65 lines

  1. #
  2. # This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. # Ref: Secunia Research
  4. #
  5. # This script is released under the GNU GPLv2
  6. #
  7.  
  8. if(description)
  9. {
  10.   script_id(15485);
  11.   script_bugtraq_id(11415);
  12.   script_version("$Revision: 1.3 $");
  13.   script_name(english:"Pinnacle ShowCenter Skin XSS");
  14.  
  15.   desc["english"] = "
  16. The remote host runs the Pinnacle ShowCenter web based interface.
  17.  
  18. The remote version  of this software is vulnerable to cross-site 
  19. scripting attack due to a lack of sanity checks on skin parameter
  20. in the SettingsBase.php script.
  21.  
  22. With a specially crafted URL, an attacker can cause arbitrary
  23. code execution resulting in a loss of integrity.
  24.  
  25. Solution: Upgrade to the newest version of this software
  26. Risk factor : Medium";
  27.  
  28.   script_description(english:desc["english"]);
  29.  
  30.   script_summary(english:"Checks skin XSS in Pinnacle ShowCenter");
  31.   script_category(ACT_GATHER_INFO);
  32.   
  33.   script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  34.   script_family(english:"CGI abuses : XSS");
  35.   script_dependencie("cross_site_scripting.nasl"); 
  36.   script_require_ports("Services/www", 8000);
  37.   exit(0);
  38. }
  39.  
  40. include("http_func.inc");
  41. include("http_keepalive.inc");
  42.  
  43. port = get_http_port(default:8000);
  44. if ( ! port ) exit(0);
  45. if(!can_host_php(port:port)) exit(0);
  46. if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);
  47.  
  48. if(get_port_state(port))
  49. {
  50.  soc = http_open_socket(port);
  51.  if(soc)
  52.  {
  53.   buf = http_get(item:"/ShowCenter/SettingsBase.php?Skin=<script>foo</script>", port:port);
  54.   r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  55.   if( r == NULL )exit(0);
  56.   if(egrep(pattern:"<script>foo</script>", string:r))
  57.   {
  58.     security_warning(port);
  59.   }
  60.   http_close_socket(soc); 
  61.  }
  62. }
  63. exit(0);
  64.